home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 17
/
AMIGAplus Sonderheft 17 (1999)(ICP)(DE)[!].iso
/
PD
/
Anwendungen
/
ToolManager
/
Source
/
Locale
/
DMakefile
< prev
next >
Wrap
Makefile
|
1998-08-10
|
1KB
|
41 lines
#
# DMakefile V3.1
#
# Makefile for ToolManager 3.1 (Locale: Library & Tools)
#
# Copyright (C) 1990-98 Stefan Becker
#
# This source code is for educational purposes only. You may study it
# and copy ideas or algorithms from it for your own projects. It is
# not allowed to use any of the source codes (in full or in parts)
# in other programs. Especially it is not allowed to create variants
# of ToolManager or ToolManager-like programs from this source code.
#
LANG = dansk deutsch français italiano norsk polski português srpski svenska
CDIR = //Locale/Catalogs/
CATD = $(LANG:"*":"$(CDIR)*")
CATF = $(LANG:"*":"$(CDIR)*/toolmanager.catalog")
TRANS = $(LANG:"*":"*.ct")
DESC = toolmanager.cd
HEAD = toolmanager.h
EMPTY = empty.ct
all : $(HEAD) $(EMPTY) $(CATD) $(CATF)
$(HEAD) : $(DESC)
CatComp $(DESC) CFILE %(left) NOARRAY NOBLOCK NOCODE
$(EMPTY) : $(DESC)
CatComp $(DESC) CTFILE %(left)
$(CATF) : $(TRANS)
CatComp $(DESC) %(right) CATALOG %(left)
$(CATF) : $(DESC)
$(CATD) : $(CATD)
MakeDir %(left)
clean :
-Delete $(HEAD) $(EMPTY)